home *** CD-ROM | disk | FTP | other *** search
/ Business Heaven / Business Heaven.iso / propmgt / easy_agt / install.bat < prev    next >
DOS Batch File  |  1992-08-13  |  700b  |  25 lines

  1. echo off
  2. set d=c:
  3. if d:=%1 set d=d:
  4. :loop1
  5. cls
  6. echo          
  7. echo              EASY AGENT HARD DRIVE INSTALLATION BATCH PROGRAM     
  8. echo              This batch program makes a directory named REALTY    
  9. echo              on C: drive and then copies all the program disk     
  10. echo              files to the C:\REALTY sub-directory.                
  11. echo              Insert the Program Disk in Drive A:                  
  12. echo              Press ENTER to continue or Ctrl+Break to abort.      
  13. echo          
  14. pause
  15. cls
  16. echo on
  17. if exist agent.exe goto ok1
  18. goto loop1
  19. :ok1
  20. mkdir %d%\realty
  21. cd %d%\realty
  22. copy a:*.* %d%
  23. cd\
  24. echo   ********** INSTALLATION COMPLETE **************
  25.